home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000324_news@columbia.edu _Fri Feb 28 11:21:37 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA03468
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 28 Feb 1997 11:21:37 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA14290
  7.     for kermit.misc@watsun; Fri, 28 Feb 1997 11:21:36 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Accessing serial port
  12. Date: 28 Feb 1997 16:21:33 GMT
  13. Organization: Columbia University
  14. Lines: 32
  15. Message-ID: <5f70md$hp8$1@apakabar.cc.columbia.edu>
  16. References: <33169E09.2A49@smart.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6663
  19.  
  20. In article <33169E09.2A49@smart.net>,  <gh@smart.net> wrote:
  21. : I have attached an external ISDN modem to my computer.
  22. : It has an ethernet connection for the network and is 
  23. : also connected to the 1st serial port with a DB9 cable
  24. : so that I can access and configure it. I am trying to
  25. : use C-kermit to access it. I am using the NEXTSTEP
  26. : operating system which uses a BSD style device name
  27. : convention. I have tried using the command SET LINE
  28. : /dev/cufa and SET LINE /dev/cuf0 to try to connect to
  29. : it, but I get the error message that the device name
  30. : not found.
  31.  
  32. This message means the device can't be found.  /dev/cufa is the
  33. hardware-flow-control driver for the first serial port.  Look in
  34. your /dev directory for files with names starting with cu:
  35.  
  36.   % cd /dev
  37.   % ls -lg cu*
  38.   crw-rw-rw-  1 uucp     wheel     11,192 Jul 30  1992 cua
  39.   crw-rw-rw-  1 uucp     wheel     11,193 Jul 30  1992 cub
  40.   crw-rw-rw-  1 uucp     wheel     11,224 Jul 30  1992 cufa
  41.   crw-rw-rw-  1 uucp     wheel     11,225 Jul 30  1992 cufb
  42.   % 
  43.  
  44. If it's not there, then just use /dev/cua.  I doubt that hardware 
  45. flow control is very important on the modem's command console.
  46.  
  47. For further info, consult your NeXTSTEP sys admin documentation or
  48. man pages.
  49.  
  50. - Frank